/** * @license * Copyright 2021 Red Hat * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { ChangeDetectorRef, SimpleChanges } from "@angular/core"; import { ExtensibleNode, Extension } from "apicurio-data-models"; import { CommandService } from "../../../_services/command.service"; import { AbstractBaseComponent } from "../../common/base-component"; import { DocumentService } from "../../../_services/document.service"; import { SelectionService } from "../../../_services/selection.service"; import { RenameEntityDialogComponent, RenameEntityEvent } from "../../dialogs/rename-entity.component"; import { AddExtensionDialogComponent } from "../../dialogs/add-extension.component"; export declare class ExtensionsSectionComponent extends AbstractBaseComponent { private changeDetectorRef; private documentService; private commandService; private selectionService; parent: ExtensibleNode; addExtensionDialog: AddExtensionDialogComponent; renameDialog: RenameEntityDialogComponent; showSectionBody: boolean; private _extensions; /** * C'tor. * @param changeDetectorRef * @param documentService * @param commandService * @param selectionService */ constructor(changeDetectorRef: ChangeDetectorRef, documentService: DocumentService, commandService: CommandService, selectionService: SelectionService); protected onDocumentChange(): void; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; /** * Returns the list of extensions */ extensions(): Extension[]; extensionsNodePath(): string; /** * Returns true if the node has at least one extension defined. */ hasExtensions(): boolean; /** * Called when the user clicks the trash icon to delete all the vendor extensions. */ deleteAllExtensions(): void; /** * Called to open the Add Extension dialog. */ openAddExtensionDialog(): void; /** * Called when the user clicks 'Add' on the Add Extension modal dialog. * @param extension */ addExtension(extension: any): void; /** * Called to open the Rename Extension dialog. */ openRenameExtensionDialog(extension: Extension): void; /** * Renames the extension. * @param event */ rename(event: RenameEntityEvent): void; /** * Deletes a single extension. * @param extension */ deleteExtension(extension: Extension): void; }